#собесы #python #senior Вопросы, которые могут задать на собеседовании Senior Python Developer. Проверьте себя без помощи поисковиков!
❓Что такое генераторы и чем они отличаются от обычных функций?
Пример кода:
def my_generator(): yield 1 yield 2 yield 3
gen = my_generator() for value in gen: print(value) # Вывод: 1, 2, 3
❗️Генераторы — это функции, которые возвращают итератор с помощью ключевого слова yield. Они не выполняют весь код сразу, а возвращают значения по одному, что полезно для работы с большими данными. Генераторы экономят память, так как не хранят все значения в памяти одновременно.
#собесы #python #senior Вопросы, которые могут задать на собеседовании Senior Python Developer. Проверьте себя без помощи поисковиков!
❓Что такое генераторы и чем они отличаются от обычных функций?
Пример кода:
def my_generator(): yield 1 yield 2 yield 3
gen = my_generator() for value in gen: print(value) # Вывод: 1, 2, 3
❗️Генераторы — это функции, которые возвращают итератор с помощью ключевого слова yield. Они не выполняют весь код сразу, а возвращают значения по одному, что полезно для работы с большими данными. Генераторы экономят память, так как не хранят все значения в памяти одновременно.
Telegram auto-delete message, expiring invites, and more
elegram is updating its messaging app with options for auto-deleting messages, expiring invite links, and new unlimited groups, the company shared in a blog post. Much like Signal, Telegram received a burst of new users in the confusion over WhatsApp’s privacy policy and now the company is adopting features that were already part of its competitors’ apps, features which offer more security and privacy. Auto-deleting messages were already possible in Telegram’s encrypted Secret Chats, but this new update for iOS and Android adds the option to make messages disappear in any kind of chat. Auto-delete can be enabled inside of chats, and set to delete either 24 hours or seven days after messages are sent. Auto-delete won’t remove every message though; if a message was sent before the feature was turned on, it’ll stick around. Telegram’s competitors have had similar features: WhatsApp introduced a feature in 2020 and Signal has had disappearing messages since at least 2016.
What is Telegram?
Telegram is a cloud-based instant messaging service that has been making rounds as a popular option for those who wish to keep their messages secure. Telegram boasts a collection of different features, but it’s best known for its ability to secure messages and media by encrypting them during transit; this prevents third-parties from snooping on messages easily. Let’s take a look at what Telegram can do and why you might want to use it.